home *** CD-ROM | disk | FTP | other *** search
- /* convert.asp - Converts AlphaSpell V dictionaries to AlphaSpell IV */
-
- ARG name temp
-
- OPTIONS RESULTS
- "DUMP" name temp
- IF RC == 0 THEN DO
- ADDRESS COMMAND "fsort temp.tmd temp!.tmd"
- ADDRESS COMMAND "uniq <temp!.tmd >temp.tmd"
- CALL Delete ("temp!.tmd")
- "DUMP temp.tmd" name
- IF RC == 0 THEN CALL Delete("temp.tmd")
- END
- "QUIT"
-
-
-